home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / ure / bin / startup.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  2009-10-22  |  2KB  |  52 lines

  1. #!/bin/sh
  2. #*************************************************************************
  3. #
  4. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  5. # Copyright 2008 by Sun Microsystems, Inc.
  6. #
  7. # OpenOffice.org - a multi-platform office productivity suite
  8. #
  9. # $RCSfile: startup.sh,v $
  10. #
  11. # $Revision: 1.4.10.1 $
  12. #
  13. # This file is part of OpenOffice.org.
  14. #
  15. # OpenOffice.org is free software: you can redistribute it and/or modify
  16. # it under the terms of the GNU Lesser General Public License version 3
  17. # only, as published by the Free Software Foundation.
  18. #
  19. # OpenOffice.org is distributed in the hope that it will be useful,
  20. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22. # GNU Lesser General Public License version 3 for more details
  23. # (a copy is included in the LICENSE file that accompanied this code).
  24. #
  25. # You should have received a copy of the GNU Lesser General Public License
  26. # version 3 along with OpenOffice.org.  If not, see
  27. # <http://www.openoffice.org/license.html>
  28. # for a copy of the LGPLv3 License.
  29. #
  30. #*************************************************************************
  31.  
  32. # Pass -env arguments on to javaldx; needs to be fixed:
  33. my_envargs=
  34. for my_arg in "$@" ; do
  35.   case ${my_arg} in
  36.     -env:*) my_envargs="${my_envargs} ${my_arg}" ;;
  37.   esac
  38. done
  39.  
  40. # Extend the LD_LIBRARY_PATH for Java:
  41. epath=`dirname "$0"`
  42. if [ -x "${epath}/javaldx" ] ; then
  43.     jpath=`"${epath}/javaldx" $my_envargs`
  44.     if [ -n "${jpath}" ]; then
  45.         LD_LIBRARY_PATH=${jpath}${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}
  46.         export LD_LIBRARY_PATH
  47.     fi
  48. fi
  49.  
  50. exec "$0.bin" "$@"
  51.